home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / poetmf / src / aboutdlg.cpp next >
Encoding:
C/C++ Source or Header  |  1993-09-02  |  1.4 KB  |  56 lines

  1. // ******************************************************************
  2. //
  3. //  aboutdlg.cpp : implementation file
  4. //  
  5. //    Most of this file is created by ClassWizard.
  6. //
  7. //  (C) 1993 POET Software
  8. //
  9. // ******************************************************************
  10.  
  11. #include <stdafx.h>        //    header to MFC
  12. #include <aboutdlg.h>   //    header to this file
  13.  
  14.  
  15. #ifdef _DEBUG            //    added by ClassWizard
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19.  
  20.  
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CAboutDlg dialog
  24.  
  25.  
  26. CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
  27.     : CDialog(CAboutDlg::IDD, pParent)
  28. {
  29.     //{{AFX_DATA_INIT(CAboutDlg)
  30.         // NOTE: the ClassWizard will add member initialization here
  31.     //}}AFX_DATA_INIT
  32. }
  33.  
  34. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  35. {
  36.     CDialog::DoDataExchange(pDX);
  37.     //{{AFX_DATA_MAP(CAboutDlg)
  38.         // NOTE: the ClassWizard will add DDX and DDV calls here
  39.     //}}AFX_DATA_MAP
  40. }
  41.  
  42.  
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44.     //{{AFX_MSG_MAP(CAboutDlg)
  45.         // NOTE: the ClassWizard will add message map macros here
  46.     //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48.  
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52. // CAboutDlg message handlers
  53.  
  54. //    CDialog::OnOK member function called , when the OK button with an ID of IDOK is clicked.
  55.  
  56.